home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-09-25 | 845 b | 37 lines | [TEXT/MPS ] |
- /*
- File: ChooserPACK.cp
-
- Contains: Implementation of the Chooser's PACK jump table.
-
-
-
- Copyright: © 1991-1997, 2000 by Apple Computer, Inc., all rights reserved.
-
- Writers:
-
- (gc) Garth Cummings
-
- Change History (most recent first):
-
- <USB1> 5/11/00 gc first checked in
- 18 Mar 98 gp Added
-
- To Do:
- */
-
- #include "Chooser.h"
-
- /**************************************************************************************
- Note: Main must get linked at the very beginning of the first file because
- the jump table must be the first entry in the PACK resource. This
- means that no headers that contain linked routines (eg, inlines)
- can be included before this routine.
- **************************************************************************************/
- asm void main(void);
- asm void main(void)
- {
- // Jump Table
- jmp Chooser
- };
-
-